home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / refex / ex82.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  173 b   |  13 lines

  1. Program example82;
  2.  
  3. { Program to demonstrate the BinStr function }
  4.  
  5. Const Value = 45678;
  6.  
  7. Var I : longint;
  8.  
  9. begin
  10.   For I:=8 to 20 do
  11.     Writeln (BinStr(Value,I):20);
  12. end.
  13.